home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / games / strategy / xconq.lha / xconq / lib / stealth.per < prev    next >
Encoding:
Text File  |  1995-03-06  |  26.4 KB  |  659 lines

  1. Xconq 0 -+---- Standard period that gets compiled in
  2. Period 0
  3.  
  4. "Modern period" period-name
  5.  
  6. "standard" font-name
  7.  
  8. ;100 scale
  9.  
  10. "i" "infantry" "marches around and captures things" utype
  11. "a" "armor" "faster than infantry, limited to open terrain" utype
  12. "f" "fighter" "interceptor to get those nasty bombers" utype
  13. "b" "bomber" "long range aircraft, carries infantry and bombs" utype
  14. "S" "spy plane" "fast hard to kill survalence craft" utype
  15. "Z" "stealth bomber" "better bomber" utype
  16. "d" "destroyer" "fast, cheap, and sinks subs" utype
  17. "s" "submarine" "sneaks around and sinks ships" utype
  18. "t" "troop transport" "carries infantry and armor across the pond" utype
  19. "C" "carrier" "carries fighters and bombers around" utype
  20. "B" "battleship" "the most powerful ship" utype
  21. "N" "atomic bomb" "leveler of cities (and anything else)" utype
  22. "/" "base" "airstrip plus port" utype
  23. "*" "town" "smaller than a city" utype
  24. "@" "city" "capital of a side" utype
  25.  
  26. "F" "fuel" "basic motive power" rtype
  27. "A" "ammo" "generic hitting capability" rtype
  28.  
  29. "." "sea" "sky blue" ttype
  30. "," "shallows" "cyan" ttype
  31. "=" "swamp" "yellowgreen" ttype
  32. "~" "desert" "yellow" ttype
  33. "+" "plains" "green" ttype
  34. "%" "forest" "forest green" ttype
  35. "^" "mountains" "sienna" ttype
  36. "_" "ice" "white" ttype
  37.  
  38. "deathray" S icon-name
  39. "impcruisr" Z  icon-name
  40.  
  41. t* t* nuked  ; most terrain won't actually change
  42. desert [ plains forest ] nuked
  43. mountains ice nuked
  44.  
  45. [   0  68  69  70  70  70  93  99  ] t* min-alt
  46. [  68  69  71  93  93  93  99 100  ] t* max-alt
  47. [   0   0  50   0  20  80   0   0  ] t* min-wet
  48. [ 100 100 100  20  80 100 100 100  ] t* max-wet
  49.  
  50. ice edge-terrain
  51.  
  52. [ / * @ ] "cities" define
  53. [ * @ ] "makers" define
  54. [ i a ] "ground" define
  55. [ f b S Z ] "aircraft" define
  56. [ d s t C B ] "ship" define
  57. [ i a f b S Z d s t C B N ] "movers" define
  58. [ sea shallows ] "water" define
  59. [ plains forest desert mountains ] "land" define
  60.  
  61. true cities named
  62. true [ C B N ] named
  63. [ 1 5 25 ] [ / * @ ] territory
  64.  
  65. 1 @ in-country
  66. 5 * in-country
  67. 100 * density
  68. @ first-unit
  69. i first-product
  70. 20 land * favored
  71. 40 plains * favored
  72. 100 plains @ favored
  73. 16 country-min-distance
  74. 48 country-max-distance
  75.  
  76. ; no disasters
  77.  
  78. [ 4 7 8 16 10 20 10 16 12 30 40 20 ] movers @ make
  79. [ 4 7 8 16 10 20 10 16 12 30 40 20 ] movers * make
  80. [ 3 5 ] / ground make
  81. true [ * @ ] maker
  82. 20 u* startup
  83. 300 N research   ; that's 3x basic time
  84. 30 [ S Z ] research
  85. ; no special resources to make
  86. 1 u* [ * @ ] repair
  87. 3 u* / repair
  88. 10 [ C f b ] C repair
  89. 10 B B repair
  90. 10 [ * @ ] i repair
  91. 1 / i repair
  92. ; infantry should maybe repair cities?
  93.  
  94. 1 fuel ground produce
  95. 2 fuel a produce ; this is less realistic, but problems otherwise
  96. [ 10 20 50 ] fuel cities produce
  97. [  5 10 20 ] ammo cities produce
  98. 100 [ plains forest ] i productivity
  99. 100 plains a productivity   ; in this case "plains" = "gas stations"
  100. [ 100 50 20 20 ] land / productivity ; one arg must be a scalar...
  101. [ 100 50 20 20 ] land * productivity
  102. [ 100 50 20 20 ] land @ productivity
  103. 100 water [ * @ ] productivity ; 1987.map has some cities in water.
  104.  
  105. [ 6 10 18 36 26 64 100 100 200 240 200 1 200 500 900 ] fuel u* storage
  106. [ 6  4  3  3  0  4  20  10  20  40  40 1 100 200 400 ] ammo u* storage
  107. 1 fuel i consume
  108. ; 1 fuel ship consume
  109. 3 fuel f consume   ; this causes problems for carriers
  110. 2 fuel b consume
  111. 6 fuel S consume
  112. 8 fuel Z consume
  113. 0 aircraft consume-as-occupant
  114.  
  115. -1 r* [ i f N ] out-length
  116.  
  117. [ 1 2 9 6 13 8 4 3 2 4 4 1 ] movers speed
  118.  
  119. 0 land i moves
  120. 0 [ plains desert ] a moves
  121. 0 t* aircraft moves
  122. 0 water ship moves
  123. 2 shallows [ C B ] moves
  124. 0 t* N moves  ; team of scientists can take bomb anywhere
  125. 0 land cities moves  ; looks strange, but needed to define allowable places
  126.  
  127. 1 fuel movers to-move
  128. 0 fuel [ N ] to-move   ; infantry doesn't need extra to move, but cause other problems
  129. 2 fuel Z to-move
  130.  
  131. 1 [ i N ] b capacity
  132. 1 [ i N ] Z capacity
  133. 65 i Z alter-mobility
  134.  
  135. 1 u* volume
  136. 1 ground volume
  137. 4 [ d s ] volume
  138. 6 [ t C B ] volume
  139. 2 b volume
  140. 6 ground t capacity
  141. 1 b hold-volume
  142. 1 Z hold-volume
  143. 6 t hold-volume
  144. 10 C hold-volume
  145. 20 / hold-volume
  146. 40 * hold-volume
  147. 80 @ hold-volume
  148. 1 ship t capacity
  149. 50 ship t alter-mobility
  150. [ 6 2 3 2 ] [ f b S Z ] C capacity
  151. 2 u* / capacity
  152. 4 [ f b ] / capacity
  153. 10 u* * capacity
  154. 20 u* @ capacity
  155. 0 cities cities capacity
  156. 9 u* f enter-time  ; aircraft can't sortie again until next turn
  157. 6 u* b enter-time
  158. 13 u* aircraft enter-time
  159. 0 u* ship enter-time
  160.  
  161. 10 s visibility
  162. 10 N visibility
  163.  5 S visibility
  164. 25 Z visibility
  165. true [ * @ ] always-seen
  166. 3 @ see-range
  167. 300 @ see-best
  168. 30 @ see-worst
  169. 2 S see-range
  170. 200 S see-best
  171. 50 S see-worst
  172. 25 mountains u* conceal
  173. 2 * see-range
  174. 200 * see-best
  175. 50 * see-worst
  176.  
  177. [ 1 1 1 2 1 2 3 2 3 4 8 1 10 20 40 ] u* hp
  178. [ 0 0 0 1 0 1 1 1 2 2 4 0  5 10 20 ] u* crippled  ; 50% of hp usually
  179.  
  180. [  50  40  20  15   0  15  20  20  30  20   9  40  80  60  40 ] u* i hit
  181. [  60  50  30  30   0  30  30  20  30  20  20  50  90  70  50 ] u* a hit
  182. [  15  25  60  70  15  50  20  30  20  50  40  80 100 100 100 ] u* f hit
  183. [  20  20  10   9   5   5  30  50  50  70  60  50  90  95  99 ] u* b hit
  184. [   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0 ] u* S hit
  185. [  25  25  15  10   5   9  35  55  55  75  65  60  95  97  99 ] u* Z hit
  186. [   5   5  20  20  10  15  60  70  60  40  20   0  99  90  80 ] u* d hit
  187. [   0   0  10   5   0   5  40  10  60  40  50   0   0   0   0 ] u* s hit
  188. [  20   5  10   5   0  15  40  40  40  30   9   0   0   0   0 ] u* t hit
  189. [  30  20  40  10  20  20  30  30  40  20  20   0   0   0   0 ] u* C hit
  190. [  50  50  50  20  20  20  70  50  90  50  90   0 100 100 100 ] u* B hit
  191. [ 200 200 200 200  50 100 200 200 200 200 200   0 200 200 200 ] u* N hit
  192. [  10  10  20  20   5  20  20  20  30  20  20   0   0   0   0 ] u* / hit
  193. [  30  20  50  40   5  30  40   0  30  20  20   0   0   0   0 ] u* * hit
  194. [  50  40  70  60   5  50  50   0  30  20  50   0   0   0   0 ] u* @ hit
  195.  
  196. 1 u* u* damage
  197. 2 cities a damage
  198. 2 ship b damage
  199. 2 [ / * ] b damage
  200. 1 s b damage
  201. 3 @ b damage
  202. 2 s d damage
  203. 3 ship s damage
  204. 4 B s damage
  205. 2 u* B damage
  206. [ 3 4 ] [ * @ ] B damage
  207. 60 u* N damage
  208. 2 aircraft d damage
  209.  
  210. -50 neutrality
  211.  
  212. false N can-counter
  213.  
  214. true N self-destruct
  215.  
  216. [ 70 50 30 ] cities i capture
  217. [ 90 70 50 ] cities a capture
  218. true i cities bridge  ; infantry can capture cities even on water.
  219.  
  220. 50 movers cities protect  ; cities offer some protection to occupants
  221. 10 cities a protect        ; armor protect the cities housing them.
  222.               ; can't make this too large or city can be
  223.               ; invulnerable.
  224. 5 cities i protect      ; same for infantry.
  225. 25 / a protect
  226. 15 / i protect
  227.  
  228. true u* changes-side  ; equipment is indifferent to its fate
  229. false i changes-side  ; but armies have some loyalty
  230. true u* neutral
  231. false i neutral
  232.  
  233. 1 ammo u* hits-with
  234. 1 ammo u* hit-by
  235.  
  236. "defeats" ground destroy-message
  237. "sinks" ship destroy-message
  238. "shoots down" [ f b ] destroy-message
  239. "flattens" cities destroy-message
  240.  
  241. true movers can-disband
  242. true / can-disband
  243.  
  244. ; help for machine strategy
  245. [ 200 150 100 100  50 50 10   8  40 1 10 0  50 500 500 ] u* attack-worth
  246. [ 200  80 200 130  50 50 20  15   0 0 10 0  50 500 500 ] u* defense-worth
  247. [ 200  50 100 100  50 50 20   0  40 0 10 0 100 500 500 ] u* explore-worth
  248. [   1  4   0   0  1000 100 100 200 100 2000 400 0 ] movers min-region-size
  249.  
  250. begin{notes}
  251. This period is the default built-in set of period parameters.  It
  252. represents units of about 1945, from infantry to atomic bombs.  This is
  253. the most familiar, which makes it easier to play, but also more controversial,
  254. since historians have many conflicting theories about which kinds of
  255. units were most effective.
  256.  
  257. Infantry.  The infantry division is the slowest of units, but it can go almost
  258. anywhere.  It is also quick to produce.  Infantry is the staple of
  259. campaigns - a little boring perhaps, but essential to success.
  260.  
  261. Armor.  The armor division is highly mobile and hits hard.  Unfortunately,
  262. it is limited to operating in open terrain - plains and desert.  It also
  263. takes longer to produce.  Armor can last twice as long in the 
  264. desert as infantry.  Both armor and infantry can
  265. assault and capture cities; they are the only units that can do so.
  266.  
  267. Fighters.  A fighter is a squadron or wing of high-speed armed aircraft.
  268. Their fuel supply can be gotten only at units, towns, and bases, so they
  269. must continually be taking off and landing.  Fighters are not too effective
  270. against ground units or ships, but they eat bombers for lunch.  Fighters
  271. are very good for reconnaisance - important in a game where you can't always
  272. see the enemy moving!
  273.  
  274. Bomber groups.  Bombers are very powerful, since they can seriously damage
  275. or even flatten cities.  The loss rate in such activities is high, so they're
  276. not a shortcut to victory!
  277.  
  278. Stealth spy planes.  Spy planes are fast and hard to see, but they
  279. have no offensive value.
  280.  
  281. Stealth bombers groups.  Stealth bombers are faster and harder to see
  282. than regular bombers.  However, fighters still take there toll and
  283. infantry can not be carried.
  284.  
  285. Destroyers.  Destroyers are fast small ships for both exploration and
  286. anti-submarine activities.
  287.  
  288. Submarines.  The favorite food of submarines is of course merchant shipping
  289. and troopships, and they can sink troop transports with one blow.
  290. Subs are also invisible, but they are vulnerable to destroyers and aircraft.
  291.  
  292. Troop transports.  This is how ground units get across the sea.  They can
  293. defend themselves against ships and aircraft, but are basically vulnerable.
  294. They're not very fast either.
  295.  
  296. Aircraft carriers.  Compensates for the fighter's limited range by providing
  297. a portable airport.  Carriers themselves are sitting ducks, particularly
  298. with respect to aircraft.  Fighter patrols are mandatory.
  299.  
  300. Battleships.  The aptly named "Dread Naught" has little to fear from other
  301. units of this period.  Subs may sink them with enough effort, and a group
  302. of bombers and fighters are also deadly, but with eight hit points to start,
  303. a battleship can usually survive long enough to escape.  Battleships are very
  304. effective against cities and armies, at least the ones on the coast.
  305.  
  306. Atomic bombs.  The Final Solution; but they are not easy to use.  A bomb
  307. takes a long time to produce, moves very slowly by itself, and is easily
  308. destroyed by other units.  The plus side is instant destruction for any unit
  309. of any size!  Bombs are imagined to be transported by a team of scientists,
  310. and can go on any sort of terrain without running out of supplies.
  311.  
  312. Bases.  To simplify matters, this can serve as a camp, airbase, and port.
  313. Bases cannot build units, although they can repair some damage.
  314.  
  315. Towns.  Towns are the staple of territory.  They can build, repair, produce
  316. fuel and ammo, and serve as a safe haven for quite a few units.
  317.  
  318. Cities.  Cities are very large, powerful, and well defended.  They are
  319. basically capital cities, or something in a comparable range.  (New York
  320. and San Francisco are cities, Salt Lake City and San Antonio are towns.)
  321. A city is worth five towns, territory-wise.
  322.  
  323. Current thinking about optimal strategy for this period differs.  In general,
  324. blitzkrieg works, and can win the game in a hurry.  The problem is to
  325. muster enough force before striking.  One full troop transport is not
  326. enough; the invasion will melt away like ice cream on a hot sidewalk, unless
  327. reinforcements (either air or land) show up quickly.  Air cover is very
  328. important.  While building up an invasion force, airborne assaults using
  329. bombers and infantry can provide useful diversions, although it can be
  330. wasteful of bombers.  Human vs human games on the default map generally
  331. last about 100 turns, usually not enough time or units to build atomic
  332. bombs or battleships, and not a big enough map to really need carriers
  333. (although bases for staging are quite useful.)
  334. end{notes}
  335.  
  336. clear-side-names
  337.  
  338. ; The more significant countries of the modern world
  339.  
  340. "American" sname "Canadian" sname "Mexican" sname "Guatemalan" sname
  341. "Honduran" sname "Sandinista" sname "Costa Rican" sname "Panamanian" sname
  342. "Colombian" sname "Ecuadorean" sname  "Peruvian" sname "Chilean" sname
  343. "Argentinian" sname "Uruguayan" sname "Paraguayan" sname "Brazilian" sname
  344. "Bolivian" sname "Guyanan" sname "Venezuelan" sname "Cuban" sname
  345. "Haitian" sname "Jamaican" sname "Irish" sname "British" sname
  346. "Portuguese" sname "Spanish" sname "French" sname "Italian" sname
  347. "Albanian" sname "Greek" sname "Turk" sname "Bulgarian" sname
  348. "Cypriot" sname "Maltese" sname "Icelander" sname
  349. "Rumanian" sname "Soviet" sname "Finnish" sname "Swedish" sname
  350. "Polish" sname "Czech" sname "Hungarian" sname "Austrian" sname
  351. "German" sname "Swiss" sname "Belgian" sname "Dutch" sname
  352. "Danish" sname "Norwegian" sname "Moroccan" sname "Mauritanian" sname
  353. "Senegalese" sname "Guinean" sname "Liberian" sname "Ghanan" sname
  354. "Nigerian" sname "Cameroon" sname "Gabonese" sname "Zairean" sname
  355. "Angolan" sname "Namibian" sname "South African" sname "Botswanan" sname
  356. "Mozambiquan" sname "Zimbabwean" sname "Zambian" sname "Tanzanian" sname
  357. "Rwandan" sname "Djiboutian" sname "Madagascaran" sname
  358. "Kenyan" sname "Ugandan" sname "Somalian" sname "Ethiopian" sname
  359. "Sudanese" sname "Egyptian" sname "Libyan" sname "Tunisian" sname
  360. "Algerian" sname "Syrian" sname "Lebanese" sname "Israeli" sname
  361. "Jordanian" sname "Saudi" sname "Yemeni" sname "Omani" sname
  362. "Kuwaiti" sname "Iraqi" sname "Iranian" sname "Afghan" sname
  363. "Pakistani" sname "Indian" sname "Nepalese" sname "Burmese" sname
  364. "Vietnamese" sname "Kampuchean" sname "Laotian" sname
  365. "Siamese" sname "Malaysian" sname "Indonesian" sname "Australian" sname
  366. "Micronesian" sname "Fijian" sname "Tongan" sname "Samoan" sname
  367. "Tahitian" sname "New Zealander" sname
  368. "Papuan" sname "Polynesian" sname "Filipino" sname "Japanese" sname
  369. "Korean" sname "Chinese" sname "Mongolian" sname "Tibetan" sname
  370.  
  371. ; The following names are derived from the Rand-McNally International Atlas
  372. ; and from their US road atlas.  Although nominally these could end up on
  373. ; any sort of unit, they are likely to be attached to city-like units only.
  374.  
  375. clear-unit-names
  376.  
  377. ; Soviet Union  
  378. "Uglegorsk" uname "Taganrog" uname "Kuzemino" uname "Igodovo" uname 
  379. "Izhevsk" uname "Leninskoye" uname "Zvenigorod" uname "Faustovo" uname 
  380. "Tokma" uname "Bolotnoje" uname "Pudino" uname "Predivinsk" uname 
  381. "Gotoputovo" uname "Stupino" uname 
  382. ; Japan  
  383. "Toyooka" uname "Kobayashi" uname "Kamiyahagi" uname "Fukude" uname 
  384. ; China  
  385. "Dandong" uname "Xingtai" uname "Xiaojiagang" uname "Wushu" uname 
  386. "Wutangjie" uname "Qingfeng" uname "Dushikou" uname "Huilong" uname 
  387. "Linyi" uname "Miaoyang" uname "Xinbo" uname "Bugt" uname 
  388. ; Indochina  
  389. "Tan-an" uname "Ban Khlong Kua" uname "Bo Phloi" uname "Thot-not" uname
  390. "Herbertabad" uname "Mong Pawn" uname "Roi Et" uname
  391. ; Indonesia  
  392. "Butong" uname "Lubukbertubung" uname "Moutong" uname "Gimpu" uname 
  393. "Waingapu" uname "Sindangbarang" uname "Kualakapuas" uname "Bongka" uname 
  394. "Salimbatu" uname "Bonggaw" uname "Baing" uname "Grokgak" uname 
  395. ; India  
  396. "Bap" uname "Meerut" uname "Harda" uname "Garwa" uname 
  397. "Digboi" uname "Kurnool" uname "Nirmal" uname "Coondapoor" uname 
  398. "Tetulbaria" uname "Maheshwar" uname "Paramagudi" uname "Bhakkar" uname 
  399. "Mungaoli" uname "Shorapur" uname "Channapatna" uname "Chilaw" uname 
  400. ; Middle East and Central Asia  
  401. "Bajandalaj" uname "Cogt-Ovoo" uname "Un't" uname "Ich-Uul" uname 
  402. "Yazd" uname "Samarkand" uname "Mashhad" uname "Chah Bahar" uname 
  403. "Jubbah" uname "Al-'Awsajiyah" uname "Kifri" uname "Kashgar" uname 
  404. "Chundzha" uname "Ushtobe" uname "Dzaamar" uname "Wadi Musa" uname 
  405. "Bogustan" uname "Gakuch" uname 
  406. ; Africa  
  407. "Pibor Post" uname "Umm Digulgulaya" uname "Umm Shalil" uname "Buzaymah" uname 
  408. "Gedo" uname "North Horr" uname "Todenyang" uname "Madadi" uname 
  409. "Ngetera" uname "Ouadda" uname "Mazoula" uname "Tiglit" uname 
  410. "Gummi" uname "Gbarnga" uname "Burutu" uname "Bafwabalinga" uname 
  411. "Goonda" uname "Ankoroka" uname "Vryburg" uname "Matuba" uname 
  412. "Bakouma" uname "El Idrissia" uname "Agadir" uname "Nungwe" uname 
  413. "Bunianga" uname "Ngali" uname "Nguiroungou" uname "Otukpa" uname 
  414. "Hell-Ville" uname "Morafenobe" uname "Tongobory" uname "Farafangana" uname 
  415. "Mungbere" uname "Haco" uname "Barbar" uname "Oulessebougou" uname
  416. ; Australia  
  417. "Nookawarra" uname "Bunbury" uname "Buckleboo" uname "Breeza Plains" uname 
  418. "Mistake Creek" uname "Boolaloo" uname "Yarloop" uname "Dubbo" uname 
  419. "Bushy Park" uname "Old Cork" uname "Cessnock" uname "Wagga Wagga" uname 
  420. "Mungar Junction" uname "Koolywirtie" uname "Wonthaggi" uname
  421. "Oatlands" uname "Bindebango" uname "Alice Springs" uname
  422. ; New Guinea  
  423. "Kwatisore" uname "Finschhafen" uname "Yobi" uname "Rumahtinggih" uname 
  424. ; USA  
  425. ; AL  
  426. "New Hope" uname "Hackleburg" uname 
  427. ; AK  
  428. "Kaktovik" uname "Fort Yukon" uname 
  429. ; AZ  
  430. "Benson" uname "Gila Bend" uname "Turkey Flat" uname "Tuba City" uname  
  431. "Wide Ruins" uname 
  432. ; AR  
  433. "Metalton" uname "Oil Trough" uname "Hackett" uname
  434. ; CA  
  435. "Burnt Ranch" uname "Calexico" uname "Eel Rock" uname "Gilroy" uname 
  436. "Joshua Tree" uname "Milpitas" uname "Mormon Bar" uname "Pumpkin Center" uname 
  437. "Death Valley Junction" uname "Toms Place" uname
  438. "Pinole" uname "Petaluma" uname 
  439. "Scotts Valley" uname "Whiskeytown" uname "Leucadia" uname "Lompoc" uname
  440. "Granada Hills" uname
  441. ; CO  
  442. "Las Animas" uname "Silver Plume" uname 
  443. ; CT  
  444. "Upper Stepney" uname "Moosup" uname "Danbury" uname
  445. ; FL  
  446. "Yeehaw Junction" uname "Big Pine Key" uname 
  447. "Panacea" uname "Wewahitchka" uname "Estiffanulga" uname 
  448. ; GA  
  449. "Dixie Unameion" uname "Fowlstown" uname "Dacula" uname "Americus" uname 
  450. ; HW  
  451. "Laupahoehoe" uname 
  452. ; ID  
  453. "Malad City" uname "Kootenai" uname 
  454. ; IL  
  455. "Farmer City" uname "Aroma Park" uname "Goreville" uname "Illiopolis" uname  
  456. "Mascoutah" uname "Metamora" uname "Metropolis" uname "New Boston" uname  
  457. "Pontoon Beach" uname "Romeoville" uname "Teutopolis" uname  
  458. ; IN  
  459. "Etan Green" uname "French Lick" uname "Loogootee" uname "Needmore" uname  
  460. "Ogden Dunes" uname "Oolitic" uname "Star City" uname  
  461. ; IA  
  462. "Coon Rapids" uname "Correctionville" uname "Grundy Center" uname
  463. "Lost Nation" uname "Ossian" uname "Sac City" uname  
  464. ; KA  
  465. "Countryside" uname "Mankato" uname "Pretty Prairie" uname  "Greeley" uname
  466. "Grouse Creek" uname
  467. ; KY  
  468. "Big Clifty" uname "Cloverport" uname "Druid Hills" uname "Fancy Farm" uname 
  469. "Hardburly" uname "Hardshell" uname "Horse Cave" uname "Pleasureville" uname 
  470. "Science Hill" uname "Sublimity City" uname "Watergap" uname 
  471. ; LA  
  472. "Bayou Goula" uname "Cut Off" uname "Hackberry" uname "Lutcher" uname 
  473. "Waggaman" uname 
  474. ; ME  
  475. "Veazie" uname "Madawaska" uname 
  476. ; MD  
  477. "Bestgate" uname "College Park" uname "Frostburg" uname "Pocomoke City" uname 
  478. "Port Deposit" uname "Pumphrey" uname "Tammany Manor" uname
  479. "Weems Creek" uname "Whiskey Bottom" uname "Hack Point" uname
  480. ; MA  
  481. "Assinippi" uname "Buzzards Bay" uname "Dorothy Pond" uname "Hopkinton" uname 
  482. "Housatonic" uname "Pigeon Cove" uname "Swampscott" uname "Gloucester" uname
  483. "Hyannis Port" uname "Ipswich" uname "Boxford" uname
  484. ; MI  
  485. "Bad Axe" uname "Brown City" uname "Cassopolis" uname "New Buffalo" uname 
  486. "Petoskey" uname "Ishpeming" uname "Ypsilanti" uname "Saugatuck" uname 
  487. ; Michigan UP (from Sandra Loosemore)  
  488. "Skanee" uname "Bruce Crossing" uname "Baraga" uname "Germfask" uname 
  489. "Assinins" uname "Tapiola" uname "Gaastra" uname "Bete Grise" uname 
  490. ; MN  
  491. "Ada" uname "Blue Earth" uname "Brainerd" uname "Eden Valley" uname  
  492. "Lino Lakes" uname "New Prague" uname "Sleepy Eye" uname "Waconia" uname  
  493. ; MS  
  494. "Bogue Chitto" uname "Buckatunna" uname "Guntown" uname "Picayune" uname 
  495. "Red Lick" uname "Senatobia" uname "Tie Plant" uname "Yazoo City" uname  
  496. ; MO  
  497. "Bourbon" uname "Doe Run" uname "Hayti" uname "Humansville" uname 
  498. "Lutesville" uname "Moberly" uname "New Madrid" uname "Peculiar" uname 
  499. "Sappington" uname "Vandalia" uname  
  500. ; MT  
  501. "Big Sandy" uname "Hungry Horse" uname 
  502. "Kalispell" uname  "East Missoula" uname
  503. ; NE
  504. "Hershey" uname "Loup City" uname 
  505. "Minatare" uname "Wahoo" uname  "Grainfield" uname
  506. ; NV  
  507. "Winnemucca" uname "Tonopah" uname "Jackpot" uname  
  508. ; NH  
  509. "Littleton" uname "Winnisquam" uname  
  510. ; NJ  
  511. "Cheesequake" uname "Freewood Acres" uname
  512. "Forked River" uname "Hoboken" uname "Succasunna" uname  
  513. "Maple Shade" uname "New Egypt" uname "Parsippany" uname "Ship Bottom" uname  
  514. ; NM  
  515. "Adobe Acres" uname "Cloudcroft" uname "Ruidoso" uname "Toadlena" uname  
  516. "Los Padillos" uname "Ojo Caliente" uname 
  517. ; NY  
  518. "Angola on the Lake" uname "Podunk" uname "Chili Center" uname
  519. "Aquebogue" uname "Muttontown" uname "Hicksville" uname 
  520. "Hoosick Falls" uname "Nyack" uname
  521. "Painted Post" uname "Peekskill" uname "Portville" uname  
  522. "Ronkonkoma" uname "Wappingers Falls" uname 
  523. "Sparrow Bush" uname "Swan Lake" uname
  524. ; NC  
  525. "Altamahaw" uname
  526. "Biltmore Forest" uname "Boger City" uname "Granite Quarry" uname  
  527. "High Shoals" uname "Lake Toxaway" uname
  528. "Scotland Neck" uname "Hiddenite" uname 
  529. "Mocksville" uname "Yadkinville" uname "Nags Head" uname 
  530. "Kill Devil Hills" uname "Rural Hall" uname  
  531. ; ND  
  532. "Cannon Ball" uname "Hoople" uname "Zap" uname  
  533. ; OH  
  534. "Academia" uname "Arcanum" uname "Blacklick Estates" uname "Blue Ball" uname  
  535. "Crooksville" uname "Dry Run" uname "Flushing" uname "Gratis" uname  
  536. "Lithopolis" uname "Mingo Junction" uname "Newton Falls" uname
  537. "New Straitsville" uname "Painesville" uname "Pepper Pike" uname 
  538. "Possum Woods" uname "Sahara Sands" uname  
  539. ; OK  
  540. "Bowlegs" uname "Broken Arrow" uname "Fort Supply" uname "Drumright" uname 
  541. "Dill City" uname "Okay" uname "Hooker" uname  
  542. ; OR  
  543. "Condon" uname "Happy Valley" uname "Drain" uname "Junction City" uname 
  544. "Molalla" uname "Philomath" uname "Tillamook" uname "Wankers Corner" uname
  545. ; PA  
  546. "Atlasburg" uname "Beaver Meadows" uname "Birdsboro" uname "Daisytown" uname 
  547. "Fairless Hills" uname "Fairchance" uname "Kutztown" uname "Erdenheim" uname 
  548. "Hyndman" uname "Pringle" uname "Scalp Level" uname "Slickville" uname 
  549. "Zelienople" uname "Sugar Notch" uname "Toughkenamon" uname "Throop" uname 
  550. "Tire Hill" uname "Wormleysburg" uname "Oleopolis" uname
  551. ; RI  
  552. "Woonsocket" uname "Pawtucket" uname
  553. ; SC  
  554. "Due West" uname "Ninety Six" uname 
  555. "Travelers Rest" uname "Ware Shoals" uname  
  556. ; SD  
  557. "Deadwood" uname "Lower Brule" uname 
  558. "New Underwood" uname "Pickstown" uname 
  559. "Plankinton" uname "Tea" uname "Yankton" uname  
  560. ; TN  
  561. "Berry's Chapel" uname "Bulls Gap" uname "Cornersville" uname "Counce" uname 
  562. "Gilt Edge" uname "Grimsley" uname "Malesus" uname "Soddy-Daisy" uname  
  563. ; TX  
  564. "Bastrop" uname "New Braunfels" uname "Harlingen" uname "Dimock" uname 
  565. "Devils Elbow" uname "North Zulch" uname "Llano" uname "Fort Recovery" uname 
  566. "Arp" uname "Bovina" uname "Cut and Shoot" uname "College Station" uname 
  567. "Grurer" uname "Iraan" uname "Leming" uname "Harlingen" uname 
  568. "Muleshoe" uname "Munday" uname "Kermit" uname "La Grange" uname 
  569. "Ropesville" uname "Wink" uname "Yoakum" uname "Sourlake" uname  
  570. ; UT  
  571. "Delta" uname "Moab" uname "Nephi" uname "Loa" uname 
  572. "Moroni" uname "Orem" uname "Tooele" uname "Sigurd" uname 
  573. ; VT  
  574. "Bellows Falls" uname "Chester Depot" uname "Winooski" uname  
  575. ; VA  
  576. "Accotink" uname "Ben Hur" uname "Ferry Farms" uname "Disputanta" uname 
  577. "Dooms" uname "Sleepy Hollow" uname "Max Meadows" uname "Goochland" uname 
  578. "Rural Retreat" uname "Sandston" uname "Stanleytown" uname
  579. "Willis Wharf" uname "Stuarts Draft" uname 
  580. ; WA  
  581. "Black Diamond" uname "Carnation" uname "Cle Elum" uname "Cosmopolis" uname 
  582. "Darrington" uname "Enumclaw" uname "Forks" uname "Goose Prairie" uname 
  583. "Navy Yard City" uname "La Push" uname "Soap Lake" uname "Walla Walla" uname 
  584. "Sedro Woolley" uname "Pe Ell" uname "Ruston" uname  
  585. ; WV  
  586. "Barrackville" uname "Pocatalico" uname "Fort Gay" uname "Big Chimney" uname 
  587. "Nutter Fort" uname "Hometown" uname "Nitro" uname "Triadelphia" uname 
  588. "Star City" uname  
  589. ; WI  
  590. "Combined Lock" uname "Coon Valley" uname "Black Earth" uname
  591. "New Holstein" uname "Little Chute" uname "Wisconsin Dells" uname
  592. "Random Lake" uname "Sheboygan" uname "Nauwatosa" uname  
  593. ; WY  
  594. "East Thermopolis" uname "Fort Washakie" uname "Paradise Valley" uname 
  595. ; Canada  
  596. "Sexsmith" uname "Squamish" uname "Fort Qu'Appelle" uname "Flin Flon" uname 
  597. "Moose Jaw" uname "Grand-Mere" uname "Great Village" uname "Pugwash" uname 
  598. "Chiliwack" uname "Cranbery Portage" uname  
  599. "Moosonee" uname "Joe Batt's Arm" uname "St.-Polycarpe" uname
  600. "Crabtree Mills" uname "Copper Cliff" uname "Uxbridge" uname 
  601. "Penetanguishene" uname "Boger City" uname "Drumheller" uname 
  602. "Port Blandford" uname "Hamtramck" uname
  603. ; USA?
  604. "Hackensack" uname "North Middleboro" uname "Fannettsburg" uname 
  605. "Corkscrew" uname "Boynton Beach" uname 
  606. "Belchertown" uname
  607. ; South America  
  608. "Huatabampo" uname "Zapotiltic" uname "Ipiranga" uname "Perseverancia" uname 
  609. "Bilwaskarma" uname "Aguadulce" uname
  610. "Albert Town" uname "Fuente de Oro" uname 
  611. "Pedras de Fogo" uname "Maxaranguape" uname "Comodoro Rivadavia" uname
  612. "Coribe" uname "Rossell y Rius" uname "General Alvear" uname
  613. "Ushaia" uname "Los Antiguos" uname "Puerto Alegre" uname "Quevedo" uname 
  614. ; Eastern Europe  
  615. "Kannonkoski" uname "Uusikaupunki" uname "Ulfborg" uname "Wloszczowa" uname 
  616. "Drohiczyn" uname "Vrchlabi" uname "Oroshaza" uname "Klagenfurt" uname 
  617. "Pisz" uname "Krokowa" uname "Partizanske" uname "Ozd" uname 
  618. "Jimbolia" uname "Peshkopi" uname "Galaxidhion" uname "Naxos" uname 
  619. ; Iceland
  620. "Thingvellir" uname "Honningsvag" uname "Vikna" uname "Jokkmokk" uname
  621. ; Scandinavia
  622. "Rimbo" uname "Kukkola" uname "Viitasaari" uname
  623. "Guderup" uname "Grindsted" uname "Store Andst" uname "Odder" uname 
  624. "Vrigstad" uname "Trollhaetten" uname "Kinsarvik" uname "Grimstad" uname 
  625. ; Ireland
  626. "Ballybunion" uname "Banagher" uname "Carncastle" uname
  627. ; Belgium
  628. "Lisp" uname "Knokke" uname "Bialy" uname "Bor" uname
  629. "Hel" uname "Puck" uname
  630. ; Germany
  631. "Diepholz" uname "Sangerhausen" uname "Biedenkopf" uname 
  632. "Mosbach" uname "Butzbach" uname "Goslar" uname "Studenka" uname
  633. "Slavonice" uname "Gouda" uname "Dokkum" uname "Oss" uname
  634. "Bad Bramstedt" uname "Dinkelsbuehl" uname "Hoogezand" uname 
  635. "Schoensee" uname "Fuerstenfeldbruck" uname 
  636. "Pfaffenhausen" uname "Namlos" uname "Bad Hall" uname
  637. "Consdorf" uname "Cloppenburg" uname "Bad Muskau" uname "Exing" uname
  638. ; France
  639. "Bois-d'Arcy" uname
  640. "Presles-en-Brie" uname "Silly-le-Long" uname "Saint-Witz" uname 
  641. "Limoux" uname "Crozon" uname "Guilvinec" uname "Poggibonsi" uname 
  642. "Pignans" uname "La Tour-du-Pin" uname "Roquefort" uname "Saint-Quentin" uname 
  643. ; Italy
  644. "Bobbio" uname "Viareggio" uname "Siderno" uname "Cortona" uname 
  645. ; Spain
  646. "Pedrogao Grande" uname "Villarcayo" uname "Alosno" uname "La Bisbal" uname 
  647. ; UK 
  648. "Cold Norton" uname "Potten End" uname "Battlesbridge" uname 
  649. "Fawkham Green" uname "Ysbyty Ystwyth" uname "Bletchley" uname
  650. "Llanbrynmair" uname "St Keverne" uname "Foxholes" uname 
  651. "Whitby" uname "Sutton-on-Sea" uname "Tweedmouth" uname "Wrexham" uname
  652. "Kirkwall" uname "Blair Atholl" uname "Inchbare" uname "Blackwaterfoot" uname 
  653. "Ramsgate" uname "Llantwit Major" uname "Minehead" uname "Buckfastleigh" uname 
  654. "Pocklington" uname "Robin Hood's Bay" uname "West Kilbride" uname
  655. "Inchnadamph" uname "North Tolsta" uname "Oykel Bridge" uname
  656. "Pangbourne" uname "Moreton-in-Marsh" uname "Wye" uname "Congresbury" uname
  657.  
  658. end
  659.